java springboot 初体验 (二) 完成java springboot项目的建立、启动

  1. 上一篇
    1. java springboot 初体验 (一)目标、工具  
    2. https://www.cnblogs.com/zwjvzwj/p/16599525.html
  2. java springboot项目的建立、启动
    1.   java使用8。暂时不引包,后续手动引导pom依赖包
  3. 添加web启动器
    1. 在pom文件中添加spring-boot-starter-web。spring-boot-starter-web中已经包含了spring-boot-starter,所以可以删除spring-boot-starter
    2. <!-- Web启动器 -->  
              <!-- 由于 spring-boot-starter-web 默认替我们引入了核心启动器 spring-boot-starter 就无须在引入 spring-boot-starter 核心启动器-->
              <dependency>
                  <groupId>org.springframework.boot</groupId>
                  <artifactId>spring-boot-starter-web</artifactId>
              </dependency>
    3.   
  4. 添加配置文件
    1.   application.properties 修改为application.yml
    2. 添加配置
      1. server:
              port: 8101
        
        spring:
            profiles:
                active: local
            application:
                name: zwj-project
    3.  
  5.   自定义启动图案

    1.   

      更改springboot启动图案
      
      // 使用方法:
      
      // (1)我们在resource或者是resources下新建一个banner.txt文件.
      
      // (2)将生成的字符图案复制到banner.txt中.
      
      // (3)重新运行SpringBoot项目,启动时图案就改变了
      
      /**
       *                    .::::.
       *                  .::::::::.
       *                 :::::::::::  FUCK YOU
       *             ..:::::::::::'
       *           '::::::::::::'
       *             .::::::::::
       *        '::::::::::::::..
       *             ..::::::::::::.
       *           ``::::::::::::::::
       *            ::::``:::::::::'        .:::.
       *           ::::'   ':::::'       .::::::::.
       *         .::::'      ::::     .:::::::'::::.
       *        .:::'       :::::  .:::::::::' ':::::.
       *       .::'        :::::.:::::::::'      ':::::.
       *      .::'         ::::::::::::::'         ``::::.
       *  ...:::           ::::::::::::'              ``::.
       * ```` ':.          ':::::::::'                  ::::..
       *                    '.:::::'                    ':'````..
       */
      
      /**
       *           _.._        ,------------.
       *        ,'      `.    ( We want you! )
       *       /  __) __` \    `-,----------'
       *      (  (`-`(-')  ) _.-'
       *      /)  \  = /  (
       *     /'    |--' .  \
       *    (  ,---|  `-.)__`
       *     )(  `-.,--'   _`-.
       *    '/,'          (  Uu",
       *     (_       ,    `/,-' )
       *     `.__,  : `-'/  /`--'
       *       |     `--'  |
       *       `   `-._   /
       *        \        (
       *        /\ .      \.  freebuf
       *       / |` \     ,-\
       *      /  \| .)   /   \
       *     ( ,'|\    ,'     :
       *     | \,`.`--"/      }
       *     `,'    \  |,'    /
       *    / "-._   `-/      |
       *    "-.   "-.,'|     ;
       *   /        _/["---'""]
       *  :        /  |"-     '
       *  '           |      /
       *              `      |
       */

       

    2.  

       

       

       

       

  6. 项目启动
    1.   

       

       

  7. 下一篇
    1.   

 

 


 

posted @ 2022-08-19 17:53  zwjvzwj  阅读(73)  评论(0编辑  收藏  举报